home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1996 July / Macworld (1996-07).dmg / System 7.5 Update 2.0 / FileMaker Pro 3.0 CD Extras / FileMaker And Apple Events / Syntax Examples / Events / Current Record Example < prev    next >
Text File  |  1996-01-25  |  330b  |  13 lines

  1. tell application "FileMaker Pro"
  2.     
  3.     copy current record of database 1 to curRecID
  4.     set data cell 1 of curRecID to "stephen"
  5.     cell 1 of curRecID
  6.     
  7.     set cell 1 of current record to "albert"
  8.     set currentRecordContents to every cell of current record
  9.     
  10.     go to record after current record
  11.     go to record before current record
  12.     
  13. end tell